home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / GLOSSARY.STX < prev    next >
Encoding:
Text File  |  2000-06-30  |  5.9 KB  |  148 lines

  1. Glossary
  2.  
  3.   For general information about Zope <a
  4.   href="http://www.zope.org/SiteIndex/searchForm" target="_blank">search</a> Zope.org.
  5.  
  6.   For Zope documentation try the <a href="http://zdp.zope.org" target="_blank">Zope
  7.   Documentation Project</a> site and the <a
  8.   href="http://www.zope.org/Documentation" target="_blank">documentation area</a> on Zope.org.
  9.  
  10.   [DTML] -- A tag-based reporting language, like ASP
  11.   or PHP. It allows you to perform operations on Zope objects and insert the
  12.   results in web pages.
  13.  
  14.     For more information on DTML see the <a
  15.     href="http://www.zope.org/Documentation/Guides/DTML" target="_blank">DTML
  16.     Reference</a>.
  17.  
  18.   [DTML Document] -- A Zope object for a web page.
  19.   You can use DTML tags in a DTML document.
  20.   
  21.     For more information on DTML Documents see the <a
  22.     href="http://www.zope.org/Documentation/Guides/ZCMG-HTML/ZCMG.7.2.html"
  23.     target="_blank">Zope Content Manager's Guide</a>.
  24.  
  25.     <dtml-var "apiLink('OFSP'+'.DTMLDocument.DTMLDocument', REQUEST)">
  26.  
  27.   [DTML Method] -- A Zope object that holds a piece of content that can
  28.   be inserted into a web page. You can use DTML tags in a DTML Method.
  29.   
  30.     For more information on DTML Methods see the <a
  31.     href="http://www.zope.org/Documentation/Guides/ZCMG-HTML/ZCMG.7.1.html"
  32.     target="_blank">Zope Content Manager's Guide</a>.
  33.  
  34.     <dtml-var "apiLink('OFSP'+'.DTMLMethod.DTMLMethod', REQUEST)">
  35.     
  36.   [Delete] -- Remove an object from the current Folder. Unlike Cut, this
  37.   does not place a copy of the object in the clipboard.
  38.     
  39.   [Cut] -- Remove a Zope object from its current location and place it
  40.   in the clipboard.
  41.   
  42.   [Copy] -- Copy a Zope object to the clipboard.
  43.   
  44.   [Database Connection] -- A Zope object to connect to a relational
  45.   database.
  46.     
  47.     For more information on Database Connections see the <a
  48.     href="http://www.zope.org/Documentation/Guides/ZSQL-HTML/ZSQL.1.3.html"
  49.     target="_blank">SQL Method User's Guide</a>.
  50.  
  51.   [<dtml-call>] -- A DTML tag that allows your to perform an
  52.   action without inserting anything into a web page.
  53.   
  54.     For more information on <dtml-call> tag see the <a
  55.     href="http://www.zope.org/Documentation/Guides/DTML-HTML/DTML.10.html"
  56.     target="_blank">DTML Reference</a>.
  57.   
  58.   [<dtml-if>] -- A DTML tag that allows you to conditionally insert
  59.   objects into a DTML Document or DTML Method.
  60.  
  61.     For more information on <dtml-if> tag see the <a
  62.     href="http://www.zope.org/Documentation/Guides/DTML-HTML/DTML.6.html"
  63.     target="_blank">DTML Reference</a>.  
  64.  
  65.   [<dtml-in>] -- A DTML tag that allows you to loop over a sequence
  66.   of objects.
  67.  
  68.     For more information on <dtml-in> tag see the <a
  69.     href="http://www.zope.org/Documentation/Guides/DTML-HTML/DTML.7.html"
  70.     target="_blank">DTML Reference</a>.  
  71.  
  72.   [<dtml-var>] -- A DTML tag that allows you to insert objects
  73.   into a DTML Document or DTML Method.
  74.   
  75.     For more information on <dtml-var> tag see the <a
  76.     href="http://www.zope.org/Documentation/Guides/DTML-HTML/DTML.5.html"
  77.     target="_blank">DTML Reference</a>.
  78.     
  79.   [<dtml-sendmail>] -- A DTML tag that sends email.
  80.  
  81.     For more information on <dtml-sendmail> tag see the <a
  82.     href="http://www.zope.org/Documentation/Guides/DTML-HTML/DTML.16.html"
  83.     target="_blank">DTML Reference</a>.
  84.     
  85.   [Folder] -- A Zope object that contains other Zope objects. You can
  86.   move objects between Folders by cutting and pasting them. You can
  87.   add new objects to Folders with the product add list.
  88.  
  89.     For more information on Folders see the <a
  90.     href="http://www.zope.org/Documentation/Guides/ZCMG-HTML/ZCMG.6.2.html"
  91.     target="_blank">Zope Content Manager's Guide</a>.
  92.  
  93.   [HTTP Cookies] -- Cookies allow you to record information in a visitor's
  94.   browser. This is commonly used to provide personalization for a web site. 
  95.  
  96.   [id] -- All Zope objects have an identifier known as the id. The id is a
  97.   short string that contains letters and numbers, spaces, underscores, dashes,
  98.   commas and tildes. Here are some example ids: 'index.html', 'My Page',
  99.   'item-12'.
  100.  
  101.   [Image] -- A Zope object for a picture.
  102.     
  103.     For more information on Images see the <a
  104.     href="http://www.zope.org/Documentation/Guides/ZCMG-HTML/ZCMG.6.4.html"
  105.     target="_blank">Zope Content Manager's Guide</a>.
  106.     
  107.     <dtml-var "apiLink('OFSP'+'.Image.Image', REQUEST)"> 
  108.    
  109.   [index_html] -- The name of the default Zope object in a Folder.
  110.   When you view a Folder the index_html object will be displayed
  111.   unless you specify otherwise. This is just like the 'index.html'
  112.   or 'default.htm' default web page with a normal web server.
  113.  
  114.   [Mail Host] -- A Zope object that allows you to send email.
  115.   Use the <dtml-sendmail> tag to send email.
  116.  
  117.     <dtml-var "apiLink('MailHost'+'.MailHost.MailHost', REQUEST)">
  118.   
  119.   [Paste] -- Insert the objects from the clipboard into the current Folder.
  120.   
  121.   [product add list] -- The list of addable objects. Select an object
  122.   from the product add list to create a new object in the current
  123.   Folder.
  124.   
  125.   [Properties] -- Properties contain small pieces of content. 
  126.   
  127.   [standard_html_header] -- The standard Zope header object. By
  128.   convention this object displays an HTML header.
  129.   
  130.   [standard_html_footer] -- The standard Zope footer object. By
  131.   convention this object displays an HTML footer.
  132.   
  133.   [title] -- Most Zope objects can have titles. Titles are optional
  134.   one line descriptions.
  135.   
  136.   [Undo] -- Allows you to recover from mistakes by undoing a
  137.   transaction.
  138.     
  139.   [ZSQL Method] -- A Zope object to get data into or out of a relational
  140.   database.
  141.   
  142.     For more information on ZSQL Methods see the <a
  143.     href="http://www.zope.org/Documentation/Guides/ZSQL-HTML/ZSQL.1.4.html"
  144.     target="_blank">SQL Method User's Guide</a>.  
  145.  
  146.     <dtml-var "apiLink('ZSQLMethods'+'.ZSQLMethod.ZSQLMethod', REQUEST)">
  147.  
  148.